text/tabwriter.Writer.cell (field)

12 uses

	text/tabwriter (current package)
		tabwriter.go#L103: 	cell    cell     // current incomplete cell; cell.width is up to buf[pos] excluding ignored sections
		tabwriter.go#L140: 	b.cell = cell{}
		tabwriter.go#L339: 			b.write0(b.buf[pos : pos+b.cell.size])
		tabwriter.go#L340: 			pos += b.cell.size
		tabwriter.go#L415: 	b.cell.size += len(text)
		tabwriter.go#L420: 	b.cell.width += utf8.RuneCount(b.buf[b.pos:])
		tabwriter.go#L455: 			b.cell.width -= 2 // don't count the Escape chars
		tabwriter.go#L459: 		b.cell.width++ // entity, count as one rune
		tabwriter.go#L469: 	b.cell.htab = htab
		tabwriter.go#L471: 	*line = append(*line, b.cell)
		tabwriter.go#L472: 	b.cell = cell{}
		tabwriter.go#L511: 	if b.cell.size > 0 {